1 /************************************************************
2 * Copyright *
3 * Portions of this software are Copyright (c) 1993 - 2002, *
4 * Chad Z. Hower (Kudzu) and the Indy Pit Crew *
5 * - http://www.nevrona.com/Indy/ *
6 ************************************************************/
7 package org.indy.http;
8
9 /***
10 *@author owen
11 */
12 final class IdHTTPWhatsNext {
13 /***
14 * Description of the Field
15 */
16 public final static IdHTTPWhatsNext GO_TO_URL = new IdHTTPWhatsNext();
17
18 /***
19 * Description of the Field
20 */
21 public final static IdHTTPWhatsNext JUST_EXIT = new IdHTTPWhatsNext();
22
23 /***
24 * Description of the Field
25 */
26 public final static IdHTTPWhatsNext DONT_KNOW = new IdHTTPWhatsNext();
27
28 /***
29 * Description of the Field
30 */
31 public final static IdHTTPWhatsNext READ_AND_GO = new IdHTTPWhatsNext();
32
33 private IdHTTPWhatsNext() {
34 }
35 }
This page was automatically generated by Maven